home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Id: grow_container_test.java,v 1.5 1996/10/03 19:46:51 hudson Exp $
- * $Author: hudson $
- */
-
- package sub_arctic.test;
-
- import sub_arctic.lib.interactor;
- import sub_arctic.lib.interactor_applet;
- import sub_arctic.lib.manager;
- import sub_arctic.lib.top_level;
- import sub_arctic.lib.simple_grow_container;
- import sub_arctic.lib.icon;
- import sub_arctic.lib.button;
- import sub_arctic.lib.base_parent_interactor;
- import sub_arctic.output.loaded_image;
-
- public class grow_container_test extends interactor_applet {
-
- public void build_ui(base_parent_interactor top)
- {
- interactor p1;
-
- p1 = new simple_grow_container(10,10,50,50, null);
- top.add_child(p1);
- p1.add_child(new size_tracker(0,0));
- }
- }
-
- /*=========================== COPYRIGHT NOTICE ===========================
-
- This file is part of the subArctic user interface toolkit.
-
- Copyright (c) 1996 Scott Hudson and Ian Smith
- All rights reserved.
-
- The subArctic system is freely available for most uses under the terms
- and conditions described in
- http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html
- and appearing in full in the lib/interactor.java source file.
-
- The current release and additional information about this software can be
- found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
-
- ========================================================================*/
-